home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Aminet 12
/
Aminet 12 (1996)(GTI - Schatztruhe)[!][Jun 1996].iso
/
Aminet
/
biz
/
dbase
/
AB.lha
/
AB
/
ARexx
/
simple_list.rexx
< prev
Wrap
OS/2 REXX Batch file
|
1992-09-03
|
561b
|
32 lines
/* Program to list the names of everyone on the current project. */
/* Make sure AB is running. */
if ~show(PORTS, 'AB_AREXX') then do
say 'AB is not currently running! Please start it and try again.'
exit
end
address 'AB_AREXX'
options results
END = 0
/* Go to the first entry. */
'FIRST_ENTRY'
/* Continue until we have reached the end of the project. */
do while END = 0
/* Print the name of this entry. */
'GET_ENTRY_DETAILS 1'
say 'Name: 'RESULT
/* Go to the next entry. */
'NEXT_ENTRY'
END = RC
end
exit